home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Softshoe / Lisa's Mac Parts / Commands / Protocols / Boasting.h < prev    next >
Text File  |  2000-06-23  |  193b  |  17 lines

  1. // Boasting.h
  2.  
  3. #ifndef Boasting_h
  4. #define Boasting_h
  5.  
  6. class Boasting
  7.   {
  8.     protected:
  9.         ~Boasting()                {}
  10.  
  11.     public:
  12.         virtual bool CanBoast() const = 0;
  13.         virtual void Boast() = 0;
  14.   };
  15.  
  16. #endif
  17.